home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / comm / fido / ROCK14.lha / addrcheck.rexx next >
OS/2 REXX Batch file  |  1995-01-24  |  526b  |  26 lines

  1. /*
  2.              Rock v1.3 - Fidonet mailer for point systems
  3.                  Copyright (C) 1995  Jean-Marc Xiume'
  4.          This software is distributed under the terms of the
  5.     GNU General Public License. Read "license.doc" for more details.
  6.  
  7. **************** Check if the given address is valid ****************
  8. */
  9.  
  10. options results
  11. options failat 99
  12.  
  13. Parse upper arg address .
  14.  
  15. parse var address a.1 ":" a.2 "/" a.3 "." a.4 .
  16.  
  17. if a.4="" then a.4=0
  18.  
  19. do i=1 to 4
  20.   if ~datatype(a.i,'w') then do
  21.     exit 1
  22.   end
  23. end
  24.  
  25. exit 0
  26.